home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / HIGHVIDO.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  264 b   |  13 lines

  1. /* p883.c --- bible */
  2. #include <conio.h>
  3. main()
  4. {
  5.     gotoxy(10, 2);
  6.     cputs("This is current attribute\n\r");
  7.     highvideo();
  8.     cputs("This is after calling 'highvideo'\n\r");
  9.     lowvideo();
  10. getch();
  11.     cputs("This is after calling 'lowvideo'\n\r");
  12. getch();
  13. }